/* pc-侧边栏 */
#pc-asiderbar {
    width: 145px;
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translate(0, -50%);
    opacity: 1;
	z-index: 999999;
}

#pc-asiderbar .pc-asiderbar-line {
    width: 100%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pc-asiderbar .pc-asiderbar-line>img {
    margin-right: 9px;
}

.pc-asiderbar-title {
    height: 40px;
    background: rgb(19, 37, 77);
    font-size: 18px;
    font-weight: bold;
}

.pc-asiderbar-a {
    height: 60px;
    font-size: 15px;
    background: pink;
    text-decoration: none;
    transition: null;
    font-weight:normal;
}
.pc-asiderbar-a:hover {
    transition: font-size .2s linear;
    font-size: 18px !important;
    font-weight: bold !important;
}
.pc-asiderbar-a:nth-of-type(odd) {
    background: rgb(97, 127, 191);
}

.pc-asiderbar-a:nth-of-type(even) {
    background: rgb(61, 79, 160);
}

.pc-asiderbar-wx {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 21px 0 14px 0;
    background: white;
}

.pc-asiderbar-wx .pc-asiderbar-wximg {
    width: 100%;
    height: 98px;
    background: url('../img/jpcasiderbar7.png') center no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 26px 0 20px 0;
}

.pc-asiderbar-wx .pc-asiderbar-wximg>img {
    position: relative;
    left: 3px;
    width: 86px;
    height: 86px;
}

.pc-asiderbar-wxtext {
    font-size: 15px;
    color: rgb(19, 37, 77);
}

.pc-asiderbar-recommend {
    width: 100%;
    display: block;
}

.pc-asiderbar-recommend>img {
    width: 100%;
    vertical-align: middle;
}

.pc-asiderbar-tel {
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(20, 38, 76);
    font-size: 12px;
    color: white;
    text-decoration: none;
}

.pc-asiderbar-tel>img {
    margin-right: 6px;
}

.pc-asiderbar-x {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 3px;
    right: 3px;
}

.pcasiderbaractive {
    opacity: 0 !important;
    transform: translate(170px, -50%) !important;
    transition: all 0.3s linear !important;
}